All Questions
3 questions
2votes
0answers
187views
generic implementation approaches for a recursive function
Let's take the famous fibonacci problem as an example but this is a generic problem. Also, taking scala as the language as it's rather feature-rich. I want to know which solution you'd prefer. we all ...
0votes
2answers
181views
Adding polynomials represented as maps
I'm using maps to represent a polynomial. The key is the exponent and the value is the coefficient : Map(exp -> coef) e.g. ...
2votes
4answers
5kviews
Calculating a base price with surcharge conditions
The following code has a lot of conditionals. I am trying to write it in a functional programming way. ...